home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / DB / UTIL72 / ULCASE1.CTL < prev    next >
Encoding:
Text File  |  1995-05-09  |  724 b   |  28 lines

  1. -- Copyright (c) 1991 by Oracle Corporation 
  2. --   NAME
  3. --     ulcase1.ctl - <one-line expansion of the name>
  4. --   DESCRIPTION
  5. --     <short description of component this file declares/defines>
  6. --   RETURNS
  7. --
  8. --   NOTES
  9. --     <other useful comments, qualifications, etc.>
  10. --   MODIFIED   (MM/DD/YY)
  11. --    cheigham   08/28/91 -  Creation 
  12. -- 
  13. -- $Header: ulcase1.ctl 7020100.1 94/09/23 22:19:36 cli Generic<base> $ case1.ctl 
  14. -- 
  15. LOAD DATA
  16. INFILE * 
  17. INTO TABLE DEPT    
  18. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  19. (DEPTNO, DNAME, LOC)
  20. BEGINDATA
  21. 12,RESEARCH,"SARATOGA"     
  22. 10,"ACCOUNTING",CLEVELAND
  23. 11,"ART",SALEM
  24. 13,FINANCE,"BOSTON"
  25. 21,"SALES",PHILA.
  26. 22,"SALES",ROCHESTER
  27. 42,"INT'L","SAN FRAN"
  28.